home *** CD-ROM | disk | FTP | other *** search
- <%
- Dim SoapServer
- Dim WSDLFilePath
- Dim WSMLFilePath
-
- On Error Resume Next
-
- Response.ContentType = "text/xml"
-
- Set SoapServer = Server.CreateObject("MSSOAP.SoapServer")
-
- WSDLFilePath = Server.MapPath("CalcITEC.wsdl")
- WSMLFilePath = Server.MapPath("CalcITEC.wsml")
-
- SoapServer.Init WSDLFilePath, WSMLFilePath
-
- SoapServer.SoapInvoke Request, Response
-
- %>